Define connected and disconnected data access in ADO.NET?
2316
25-Oct-2010
Rajesh Goswami
08-Nov-2010Disconnected data access is achieved through the DataAdapter object. This object establishes connection, executes the command, load data in the DataSet. The dataset works independent of database. It contains data in the memory and can edit the data. The changes in the data can be transmitted to the database using Update method of DataAdapter object.